home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj8410.arc / PIXEL_ON.ASM < prev   
Assembly Source File  |  1986-09-14  |  640b  |  18 lines

  1. ;edit: rda 12/83
  2. ;
  3. ;this list defines an 8x8 character with 
  4. ;all pixels turned "on."  See BIOS listing 
  5. ;in Tech Reference for other character definitions.
  6. ;
  7. BLANK_DATA DB 0FFH,0FFH,0FFH,0FFH,0FFH,0FFH,0FFH,0FFH
  8. ;
  9. INIT     PROC NEAR        ; set up an ASCII character 128
  10.     LEA  DX,BLANK_DATA     ;all pixels on will be ASCII 128
  11.     MOV  AL,1FH          ;address of our ascii chars 
  12.                               ;goes into vector 1fh
  13.     MOV  AH,25H          ;dos fcn call: set interrupt vector
  14.     INT  21H        ;dos fcn call
  15.     RET              ;note that this must be done 
  16.                               ;before nr_print!
  17. INIT     ENDP
  18.